using Warudo.Core.Attributes;
using Warudo.Core.Graphs;
using System;
using Object = UnityEngine.Object;

namespace Warudo.Plugins.Core.Nodes
{
    public class IntegerDivisionNode : Node
    {
        public int A;
        public int B;
        public int Result()
        {
            throw new NotImplementedException();
        }
    }
}